home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Ware Multimedia 1995 May
/
cd Ware (Juegos) Epimundo.iso
/
DOS
/
C
/
WLIB.ZIP
/
FATAL.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-03-18
|
324 b
|
18 lines
#include <WStr.h>
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
// what goes in here will change from application to application
void FatalError(const char* Str)
{
puts("\n");
cputs("Fatal Error Encountered: \"");
cputs(Str);
cputs("\"");
puts("");
exit(-1);
}